home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- if [ -e /Library/StartupItems/Executor/Executor ]
- then
- /Library/StartupItems/Executor/Executor stop
- fi
- if [ -e "/Library/Receipts/Data Backup.pkg" ]
- then
- FOUND=`grep "Data Backup 2.0.[012]" "/Library/Receipts/Data Backup.pkg/Contents/Info.plist"`
- # we're compatible with DB 2.0.3 and greater preferences.. For any other versions
- # wipe them out
- if [ ! -z "$FOUND" ]
- then
- rm -rf /Library/Preferences/com.prosofteng.databackup
- rm -rf /Library/Logs/databackup
- fi
- fi
-